home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / UnsupportedLookAndFeelException.java < prev    next >
Text File  |  1998-06-30  |  2KB  |  38 lines

  1. /*
  2.  * @(#)UnsupportedLookAndFeelException.java    1.5 98/02/02
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not disclose
  8.  * such Confidential Information and shall use it only in accordance with the
  9.  * terms of the license agreement you entered into with Sun.
  10.  * 
  11.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  12.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  13.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
  14.  * OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY
  15.  * LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR
  16.  * ITS DERIVATIVES.
  17.  * 
  18.  */
  19. package com.sun.java.swing;
  20.  
  21. /**
  22.  * An exception that indicates the request look & feel management classes
  23.  * are not present on the user's system.
  24.  * <p>
  25.  * Warning: serialized objects of this class will not be compatible with
  26.  * future swing releases.  The current serialization support is appropriate
  27.  * for short term storage or RMI between Swing1.0 applications.  It will
  28.  * not be possible to load serialized Swing1.0 objects with future releases
  29.  * of Swing.  The JDK1.2 release of Swing will be the compatibility
  30.  * baseline for the serialized form of Swing objects.
  31.  */
  32. public class UnsupportedLookAndFeelException extends Exception
  33. {
  34.     public UnsupportedLookAndFeelException(String s) {
  35.     super(s);
  36.     }
  37. }
  38.